Hi, |
Re: DOORS Folders This thread might help you. https://www.ibm.com/developerworks/forums/thread.jspa?messageID=14236878� You can also use the "-addins" command line switch to specify the include file search path. Take a look at: http://publib.boulder.ibm.com/infocenter/doorshlp/v9/index.jsp?topic=/com.ibm.doors.configuring.doc/topics/c_clientcommandswitches.html GothSloth PS. I'm guessing you are asking about include file paths in DXL. Sorry if I missed the boat entirely. |
Re: DOORS Folders
// Environment variable
const string RPE_HOME = getenv("RPE_HOME") // RPE variable
const string DOORSHOME = getenv("DOORSHOME") // DOORS variable
const string USER_PROFILE = getenv("USERPROFILE") // Desktop variable
// RPE fullpath
const string RPE_LAUNCH = RPE_HOME "\\launcher\\rpe-launcher.exe"
// DOORS fullpath
const string DOORS_LAUNCH = DOORSHOME "bin\\doors.exe"
|
Re: DOORS Folders |